home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen…tion Library 4 (Reseller) / Apple Ref. & Pres. Lib.v4.0.iso / 4-Demos / Apple Demos / Tutorials / Display Card 4•8⁄8•24 Training / Display Card 4•8_8•24 Training / card_27598.txt < prev    next >
Text File  |  1990-03-19  |  5KB  |  204 lines

  1. -- card: 27598 from stack: in
  2. -- bmap block id: 0
  3. -- flags: 0000
  4. -- background id: 27732
  5. -- name: test 7
  6. ----- HyperTalk script -----
  7. on closecard
  8.   global maploc, cardloc, tally
  9.   put "" into tally
  10.   put 1 into i
  11.   repeat with i = 1 to 5 --the number of lines of cd fld "incorrect"
  12.     if line i of cd fld "incorrect" is "" then put "false" into item i of tally
  13.     if line i of cd fld "incorrect" > 0 then put "false" into item i of tally
  14.     if line i of cd fld "incorrect" < 2 then put "true" into item i of tally
  15.     add 1 to i
  16.   end repeat
  17.   if tally contains "false" or tally is "" then
  18.     put "no" into line 10 of field "footprints" of card "map"
  19.   else
  20.     put "yes" into line 10 of field "footprints" of card "Map"
  21.   end if
  22.   push card
  23.   put word 1 of the short name of this card into maploc
  24.   put word 2 of the short name of this card into cardloc
  25. end closecard
  26.  
  27.  
  28.  
  29. -- part 1 (field)
  30. -- low flags: 01
  31. -- high flags: 0000
  32. -- rect: left=322 top=128 right=225 bottom=345
  33. -- title width / last selected line: 0
  34. -- icon id / first selected line: 0 / 0
  35. -- text alignment: 0
  36. -- font id: 156
  37. -- text size: 14
  38. -- style flags: 0
  39. -- line height: 16
  40. -- part name: correct
  41.  
  42.  
  43. -- part 2 (field)
  44. -- low flags: 01
  45. -- high flags: 0000
  46. -- rect: left=398 top=128 right=224 bottom=428
  47. -- title width / last selected line: 0
  48. -- icon id / first selected line: 0 / 0
  49. -- text alignment: 0
  50. -- font id: 156
  51. -- text size: 14
  52. -- style flags: 0
  53. -- line height: 16
  54. -- part name: incorrect
  55.  
  56.  
  57. -- part 3 (button)
  58. -- low flags: 00
  59. -- high flags: 0001
  60. -- rect: left=456 top=317 right=342 bottom=484
  61. -- title width / last selected line: 0
  62. -- icon id / first selected line: 18622 / 18622
  63. -- text alignment: 1
  64. -- font id: 0
  65. -- text size: 12
  66. -- style flags: 0
  67. -- line height: 16
  68. -- part name: next
  69. ----- HyperTalk script -----
  70. on mouseUp
  71.   answer "Click one of the sections." with "Help" or "OK"
  72.   if it is "Help" then
  73.     push card
  74.     visual dissolve
  75.     go card "howtoUse"
  76.   else exit mouseUp
  77. end mouseUp
  78.  
  79.  
  80.  
  81. -- part 4 (button)
  82. -- low flags: 00
  83. -- high flags: 0001
  84. -- rect: left=428 top=317 right=342 bottom=456
  85. -- title width / last selected line: 0
  86. -- icon id / first selected line: 18621 / 18621
  87. -- text alignment: 1
  88. -- font id: 0
  89. -- text size: 12
  90. -- style flags: 0
  91. -- line height: 16
  92. -- part name: 
  93.  
  94.  
  95. -- part 5 (button)
  96. -- low flags: 00
  97. -- high flags: A003
  98. -- rect: left=296 top=319 right=340 bottom=413
  99. -- title width / last selected line: 0
  100. -- icon id / first selected line: 0 / 0
  101. -- text alignment: 1
  102. -- font id: 0
  103. -- text size: 12
  104. -- style flags: 0
  105. -- line height: 16
  106. -- part name: Clear Scores
  107. ----- HyperTalk script -----
  108. on mouseUp
  109.   answer "Do you want to clear the scores?" with "No" or "Yes"
  110.   if it is "Yes" then
  111.     put empty into cd fld "correct"
  112.     put empty into cd fld "incorrect"
  113.   else
  114.     exit mouseup
  115.   end if
  116. end mouseUp
  117.  
  118.  
  119.  
  120. -- part 7 (button)
  121. -- low flags: 00
  122. -- high flags: 8003
  123. -- rect: left=170 top=318 right=340 bottom=270
  124. -- title width / last selected line: 0
  125. -- icon id / first selected line: 0 / 0
  126. -- text alignment: 1
  127. -- font id: 0
  128. -- text size: 12
  129. -- style flags: 0
  130. -- line height: 16
  131. -- part name: Test Menu
  132. ----- HyperTalk script -----
  133. on mouseUp
  134.   go card "test 0"
  135. end mouseUp
  136.  
  137.  
  138.  
  139. -- part 8 (field)
  140. -- low flags: 80
  141. -- high flags: 0000
  142. -- rect: left=77 top=241 right=297 bottom=455
  143. -- title width / last selected line: 0
  144. -- icon id / first selected line: 0 / 0
  145. -- text alignment: 0
  146. -- font id: 156
  147. -- text size: 14
  148. -- style flags: 0
  149. -- line height: 16
  150. -- part name: No Dice
  151.  
  152.  
  153. -- part 9 (field)
  154. -- low flags: 01
  155. -- high flags: 0000
  156. -- rect: left=126 top=240 right=290 bottom=467
  157. -- title width / last selected line: 0
  158. -- icon id / first selected line: 0 / 0
  159. -- text alignment: 0
  160. -- font id: 156
  161. -- text size: 14
  162. -- style flags: 0
  163. -- line height: 16
  164. -- part name: 
  165.  
  166.  
  167. -- part contents for background part 4
  168. ----- text -----
  169. Macintosh Display Card 4‚Ä¢8 and 8‚Ä¢24
  170.  
  171. -- part contents for background part 5
  172. ----- text -----
  173. Training Evaluation
  174.  
  175. -- part contents for background part 10
  176. ----- text -----
  177. Score Card
  178.  
  179. -- part contents for background part 16
  180. ----- text -----
  181. test 7
  182.  
  183. -- part contents for background part 6
  184. ----- text -----
  185.  
  186. Number of Responses:             Correct       Incorrect
  187.  
  188. Features and Advantages #1
  189. Features and Advantages #2
  190. Compatibility (software)
  191. Compatibility (hardware)
  192. Questions and Answers
  193.  
  194.  
  195.  
  196.  
  197.  
  198. -- part contents for card part 8
  199. ----- text -----
  200. To be eligible for a Certificate of Completion, your final score must contain no more than one incorrect response per section.  You may take any evaluation over again if you wish.
  201.  
  202. -- part contents for card part 9
  203. ----- text -----
  204. To be eligible for a Certificate of Completion, you must have no more than 1 incorrect response per section.  You are allowed to retake any evaluation you wish.